home *** CD-ROM | disk | FTP | other *** search
/ MacWorld 2005 July / Macworld CD 17.05.iso / Data / Main.dxr / 00057_Alert Pull software off CD.ls < prev    next >
Encoding:
Text File  |  2000-02-28  |  779 b   |  18 lines

  1. property MemoryNeeded, TheProgram, ProgramPathname, folderName, TheInteractivie
  2.  
  3. on new me
  4.   return me
  5. end
  6.  
  7. on getPropertyDescriptionList me
  8.   description = [:]
  9.   addProp(description, #MemoryNeeded, [#default: 0, #format: #integer, #comment: "The Memory needed"])
  10.   addProp(description, #TheProgram, [#default: "None", #format: #string, #comment: "The Program"])
  11.   addProp(description, #folderName, [#default: "None", #format: #string, #comment: "The Program Foldername"])
  12.   return description
  13. end
  14.  
  15. on mouseUp me
  16.   alert("To install " & TheProgram & ", copy the " & folderName & "  folder from the CD to your hard drive.   Note:  " & TheProgram & " requires " & MemoryNeeded & "MB of free RAM to run.   Running the program without enough memory may result in a -108 error.")
  17. end
  18.